From 14302840ff558220be6c58a56439e2601e640257 Mon Sep 17 00:00:00 2001 From: "cl349@firebug.cl.cam.ac.uk" Date: Wed, 27 Jul 2005 18:40:32 +0000 Subject: [PATCH] Don't ignore exceptions here - the possible RuntimeError is handled already. Signed-off-by: Christian Limpach --- tools/python/xen/xend/XendDomainInfo.py | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/tools/python/xen/xend/XendDomainInfo.py b/tools/python/xen/xend/XendDomainInfo.py index 5859905b3d..4666eab524 100644 --- a/tools/python/xen/xend/XendDomainInfo.py +++ b/tools/python/xen/xend/XendDomainInfo.py @@ -989,11 +989,8 @@ class XendDomainInfo: self.store_channel = self.eventChannel("store_channel") self.store_mfn = xc.init_store(self.store_channel.port2) if self.store_mfn >= 0: - try: - self.db.introduceDomain(self.id, self.store_mfn, - self.store_channel) - except: - pass + self.db.introduceDomain(self.id, self.store_mfn, + self.store_channel) self.exportToDB(save=True, sync=True) def vm_field_ignore(vm, config, val, index): -- 2.30.2